home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1996
/
MacHack 1996.toast
/
Presentations
/
Presentations ’92
/
PatchWorks Kit
/
<PatchWorks++>
/
Extension.h
< prev
next >
Wrap
Text File
|
1992-05-30
|
598b
|
34 lines
/*
Extension.h
Forward declarations for installation/removal functions.
Part of PatchWorks, the Extension Development Framework.
by Mouse Herrell & Patrick Beard.
Permission is granted to use this source code for any purpose, as long
as the copyright notice is maintained.
© 1992 Berkeley Systems, Inc.
*/
#pragma once
#ifndef __EXTENSION__
#define __EXTENSION__
#ifndef __TYPES__
#include <Types.h>
#endif
extern short theSystemVersion;
extern Boolean theCQDFlag;
extern Handle theExtensionCode;
void Install(void);
void Remove(void);
void InstallShutDownTask(void);
#endif